home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / Direct Blitting in C++ / Blitting.sit / Blitting ƒ / CDirectVideo.h < prev    next >
Text File  |  1995-04-16  |  482b  |  22 lines

  1. // CDirectVideo.h, the CDirectVideo class
  2. //
  3. // Copyright ⌐ 1995, Macneil Shonle. All rights reserved.
  4.  
  5. #ifndef __CDIRECTVIDEO__
  6. #define __CDIRECTVIDEO__
  7.  
  8. #ifndef __CDIRECTBLIT__
  9. #include <CDirectBlit.h>
  10. #endif
  11.  
  12. class CDirectVideo : public CDirectBlit {
  13. public:
  14.     CDirectVideo( GDHandle device, Rect *bounds = nil );
  15.     virtual ~CDirectVideo();
  16.     
  17. private:
  18.     void NewCleanCPort( CGrafPtr &theGrafPort, const Rect &theBounds );
  19.     void DisposeCleanCPort( CGrafPtr &theGrafPort );
  20. };
  21.  
  22. #endif